Xbasic

A5DNS::ManagerVerify Method

Syntax

.Verify as A5Storage::CallResult (ConnectionStringIn as C [, ConnectionStringPassphrase as C])

Arguments

ConnectionStringInCharacter

The connection string to be verified.

ConnectionStringPassphraseCharacter

The passphrase used to encrypt the connection string (if any).

Returns

resultA5Storage::CallResult

A CallResult object with properties that describe any error returned. Check the Success property to see if the function succeeded.

Description

Verify checks the content of a connection string to make sure it is valid.

Example

' Call the static function A5DNS::Manager::Verify()

dim connectionstring as c = "connection string"
dim passphrase as c = "secret"
Result = A5DNS::Manager::Verify(connectionstring, passphrase)
?Result